Ultimate Enterprise Data Analysis and Forecasting Using Python: Leverage Cloud Platforms with Azure Time Series Insights and AWS Forecast Components for Deep Learning Modeling Usin by Pandian Shanthababu;

Ultimate Enterprise Data Analysis and Forecasting Using Python: Leverage Cloud Platforms with Azure Time Series Insights and AWS Forecast Components for Deep Learning Modeling Usin by Pandian Shanthababu;

Author:Pandian, Shanthababu; [Pandian, Shanthababu]
Language: eng
Format: epub
Publisher: Orange Education PVT Ltd
Published: 2023-03-15T00:00:00+00:00


β is the smoothing factor [ value range from 0 to 1].

xt is the observation from the dataset during the time(t) period.

In the following calculation, the smoothing factor for the current and previous data points is 0.1 and 0.9:

Figure 6.41: EMA model output – predicted price along with formula

Figure 6.42 shows the actual vs forecast line plot using the EMA model.

Figure 6.42: EMA model line plot for diesel price dataset

EMA implementation using Python

Let’s implement the EMA model using Python code with a diesel data set and plot the line chart to understand the movements.

#load the required libraries

import numpy as np

import pandas as pd

import matplotlib.pyplot as plt

from matplotlib import pyplot

#load dataset for EMA model analysis

df_diesel_price_EMA = pd.read_csv(“diesel_price EMA.csv”, header=0, index_col=0)

df_diesel_price_EMA.index.name = ‘Sale_Date’

df_diesel_price_EMA[‘average_price’] = df_diesel_price_EMA.mean(axis=1)

df_diesel_price_EMA[‘EMA’] = df_diesel_price_EMA.average_price.expanding().mean()

# smoothing factor - 0.1,0.25,.5

df_diesel_price_EMA[‘EMA_0.1’] = df_diesel_price_EMA.average_price.ewm(alpha=0.1, adjust=False).mean()

df_diesel_price_EMA[‘EMA_0.25’] = df_diesel_price_EMA.average_price.ewm(alpha=0.25, adjust=False).mean()

df_diesel_price_EMA[‘EMA_0.5’] = df_diesel_price_EMA.average_price.ewm(alpha=0.5, adjust=False).mean()

colors = [‘orange’,’blue’, ‘green’, ‘red’]

df_diesel_price_EMA[[‘average_price’, ‘EMA_0.1’,’EMA_0.25’,’EMA_0.5’]].plot(color=colors, linewidth=3, figsize=(12,6))

plt.xticks(fontsize=14)

plt.yticks(fontsize=14)

plt.legend(labels =[‘Average price’, ‘EMA_0.1’,’EMA_0.25’,’EMA_0.5’], fontsize=14)

plt.title(‘Diesel’, fontsize=20)

plt.xlabel(‘Sala_Date’, fontsize=16)

plt.ylabel(‘Diesel Price’, fontsize=16)

print(“ ############################################################”)

print(“ Exponential Moving Average Plot for Diesel “)

print(“ ############################################################”)

############################################################

Exponential Moving Average Plot for Diesel

############################################################



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Popular ebooks
Eco-friendly approach of bio-indigo synthesis and developing purification methods towards isolation of indigo from indirubin and bacterial fragments by Ramalingam Manivannan & Kaliyan Prabakaran & Young-A Son(162441)
Personalized inhaled bacteriophage therapy for treatment of multidrug-resistant Pseudomonas aeruginosa in cystic fibrosis by unknow(157789)
Whisky: Malt Whiskies of Scotland (Collins Little Books) by dominic roskrow(74281)
CONSORT 2025 statement: updated guideline for reporting randomized trials by unknow(66082)
Critical evaluation of the ProfiLER-02 study design and outcomes by Vivek Subbiah & Razelle Kurzrock(65833)
Cardiac gene therapy makes a comeback by Oliver J. Müller & Susanne Hille & Anca Kliesow Remes(65272)
Unveiling the design rules for tunable emission in graphene quantum dots: A high-throughput TDDFT and machine learning perspective by Şener Özönder & Mustafa Coşkun Özdemir & Caner Ünlü(50860)
A yeast-based oral therapeutic delivers immune checkpoint inhibitors to reduce intestinal tumor burden by unknow(40225)
Covalent hitchhikers guide proteins to the nucleus by Alexander F. Russell & Madeline F. Currie & Champak Chatterjee(40191)
Meet the Authors: Christopher R. Mansfield and Emily R. Derbyshire by Christopher R. Mansfield & Emily R. Derbyshire(40057)
What's Done in Darkness by Kayla Perrin(27108)
Topological analysis of non-conjugated ethylene oxide cored dendrimers decorated with tetraphenylethylene: Insights from degree-based descriptors using the polynomial approach by A Theertha Nair & D Antony Xavier & Annmaria Baby & S Akhila(26484)
Investigation of mechanical and self-healing properties of hydroxyl-terminated polybutadiene functionalized with 2-ureido-4-pyrimidinone by Mohsen Kazazi & Mehran Hayaty & Ali Mousaviazar(26435)
The Ultimate Python Exercise Book: 700 Practical Exercises for Beginners with Quiz Questions by Copy(21018)
De Souza H. Master the Age of Artificial Intelligences. The Basic Guide...2024 by Unknown(20777)
D:\Jan\FTP\HOL\Work\Alien Breed - Tower Assault CD32 Alien Breed II - The Horror Continues Manual 1.jpg by PDFCreator(20650)
The Fifty Shades Trilogy & Grey by E L James(19605)
Shot Through the Heart: DI Grace Fisher 2 by Isabelle Grey(19487)
Shot Through the Heart by Mercy Celeste(19349)
Python GUI Applications using PyQt5 : The hands-on guide to build apps with Python by Verdugo Leire(17492)